Dim CurrentPage As Integer ' Currently displayed page
Sub About ()
MsgBox "This program demonstrates a method of viewing large text files. This demo does not attempt to demonstrate editing techniques. That will be covered in another demo." + Chr$(10) + "" + Chr$(10) + "VBstrAPI.DLL Copyright " & Chr(169) & " 1995, Greg Truesdell", 64, "VBstrAPI Viewer Demonstration"
End Sub
Sub Form_Activate ()
About
End Sub
Sub Form_Load ()
SHandle = -1
CHandle = CreateNewCatString(BUFFER_SIZE)
If CHandle = -1 Then
MsgBox "The program was unable to create a CatStr Object." + Chr$(10) + "This usually means there is not enough memory.", 16, "Unable to Continue"